Skip to content

Commit

Permalink
Fix script chmod x issues
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Luar <[email protected]>
  • Loading branch information
luarss committed Aug 9, 2024
1 parent 16ab1e9 commit 7f9f72a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions flow/test/test_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ fi
if [ $RUN_AUTOTUNER -eq 1 ]; then
# run the commands in ORFS root dir
echo "[INFO FLW-0029] Installing dependencies in virtual environment."
cd ../
./tools/AutoTuner/installer.sh
./tools/AutoTuner/setup.sh

Expand Down
2 changes: 2 additions & 0 deletions tools/AutoTuner/installer.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

echo "Installing AutoTuner..."

# Get the directory where the script is located
script_dir="$(dirname "${BASH_SOURCE[0]}")"
cd $script_dir
Expand Down
4 changes: 3 additions & 1 deletion tools/AutoTuner/setup.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/bash
#!/usr/bin/env bash

echo "Setting up AutoTuner..."

# Get the directory of the current script
SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")"
Expand Down

0 comments on commit 7f9f72a

Please sign in to comment.