Skip to content

Commit

Permalink
Github actions seems to have problems with sh.cd, but on closer inspe…
Browse files Browse the repository at this point in the history
…ction this cd command is never invoked, so I will try removing it.
  • Loading branch information
sit23 committed Oct 18, 2023
1 parent 91f1555 commit 3c63ca3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/extra/python/isca/codebase.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from isca import GFDL_WORK, GFDL_BASE, GFDL_SOC, _module_directory, get_env_file
from .loghandler import Logger
from .helpers import url_to_folder, destructive, useworkdir, mkdir, cd, git, P, git_run_in_directory, check_for_sh_stdout
from .helpers import url_to_folder, destructive, useworkdir, mkdir, git, P, git_run_in_directory, check_for_sh_stdout

import pdb

Expand Down
2 changes: 1 addition & 1 deletion src/extra/python/isca/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sh

mkdir = sh.mkdir.bake('-p')
cd = sh.cd
# cd = sh.cd
git = sh.git.bake('--no-pager')

P = os.path.join
Expand Down

0 comments on commit 3c63ca3

Please sign in to comment.