Commit 6a01990f authored by F-WRunTime's avatar F-WRunTime

Fixing path, dirname stripped a necessary folder

parent 5ea5ef2b
#!/bin/bash #!/bin/bash
set -euxo pipefail set -euo pipefail
##################### #####################
# Support Functions # # Support Functions #
...@@ -19,7 +19,7 @@ notif "Script Home: $SCRIPT_HOME" ...@@ -19,7 +19,7 @@ notif "Script Home: $SCRIPT_HOME"
blank_line blank_line
# Set Run Directory <root>/packages/contracts-bedrock # Set Run Directory <root>/packages/contracts-bedrock
RUN_DIR="$( cd "$( dirname "$SCRIPT_HOME/../../.." )" >/dev/null 2>&1 && pwd )" RUN_DIR="$( cd $SCRIPT_HOME/../../.. >/dev/null 2>&1 && pwd )"
notif "Run Directory: $RUN_DIR" notif "Run Directory: $RUN_DIR"
blank_line blank_line
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment