Skip to content

Commit 12bea47

Browse files
authored
Merge pull request #120 from c-dilks/rm-realpath
fix: avoid using `realpath`
2 parents 0fd9f7b + 41e4194 commit 12bea47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
thisEnv=${BASH_SOURCE[0]:-$0}
4-
export CLAS12DIR=$(realpath $(dirname $thisEnv)/..)
4+
export CLAS12DIR=$(cd $(dirname $thisEnv)/.. && pwd -P)
55

66
# Set default field maps (but do not override user's env):
77
if [ -z "${COAT_MAGFIELD_TORUSMAP-}" ]; then

0 commit comments

Comments
 (0)