Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
suecharo committed Jul 15, 2024
1 parent d1b478f commit e1706cc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions sapporo/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ function run_wf() {
if [[ "$(type -t ${function_name})" == "function" ]]; then
${function_name}

echo "In run.sh" 1>>${stdout} 2>>${stderr}
echo "In run.sh" 1>>${stdout} 2>>${stderr} || executor_error

echo "=== env ========" 1>>${stdout} 2>>${stderr}
echo "=== env ========" 1>>${stdout} 2>>${stderr} || executor_error

env 1>>${stdout} 2>>${stderr}
env 1>>${stdout} 2>>${stderr} || executor_error

echo "=== pip list ========" 1>>${stdout} 2>>${stderr}
echo "=== pip list ========" 1>>${stdout} 2>>${stderr} || executor_error

python3 -m pip list 1>>${stdout} 2>>${stderr}
python3 -m pip list 1>>${stdout} 2>>${stderr} || executor_error

echo "=== which ========" 1>>${stdout} 2>>${stderr}
echo "=== which ========" 1>>${stdout} 2>>${stderr} || executor_error

which python3 1>>${stdout} 2>>${stderr}
which python3 1>>${stdout} 2>>${stderr} || executor_error

echo "=== exec module ========" 1>>${stdout} 2>>${stderr}
echo "=== exec module ========" 1>>${stdout} 2>>${stderr} || executor_error

python3 -c "from sapporo.run import dump_outputs_list; print(id(dump_outputs_list))" 1>>${stdout} 2>>${stderr}
python3 -c "from sapporo.run import dump_outputs_list; print(id(dump_outputs_list))" 1>>${stdout} 2>>${stderr} || executor_error

generate_outputs_list
else
Expand Down

0 comments on commit e1706cc

Please sign in to comment.