Skip to content

Commit

Permalink
fix(CICD): test / in activate path
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienChampagnol committed Jun 18, 2024
1 parent c424b21 commit dba57cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion electron-server/install_back.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
source $bin_folder/activate
elif [[ "$OSTYPE" == "msys" ]]; then
bin_folder=$folder/Scripts
$bin_folder\activate
$bin_folder/activate
fi
pip install pip-tools
pip-compile electron-server/requirements_back.in
Expand Down
3 changes: 1 addition & 2 deletions electron-server/install_viewer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
bin_folder=$folder/bin
elif [[ "$OSTYPE" == "msys" ]]; then
bin_folder=$folder/Scripts
$bin_folder\activate
$bin_folder/activate
fi

pip install pip-tools
pip-compile electron-server/requirements_viewer.in
pip install -r electron-server/requirements_viewer.txt
Expand Down

0 comments on commit dba57cd

Please sign in to comment.