Skip to content

Commit

Permalink
use $( for command substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
demarey committed May 13, 2024
1 parent 8eaea50 commit 69b0747
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/PharoLauncherCommonFunctions.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env bash

# some magic to find out the real location of this script dealing with symlinks
DIR=`readlink "$0"` || DIR="$0";
ROOT=`dirname "$DIR"`;
DIR=$(readlink "$0") || DIR="$0";
ROOT=$(dirname "$DIR");

#setup pharo launcher and image name paths
PHL_SCRIPT="$ROOT"/pharo-launcher.sh
Expand Down

0 comments on commit 69b0747

Please sign in to comment.