Skip to content

Commit

Permalink
Merge pull request #120 from c-dilks/rm-realpath
Browse files Browse the repository at this point in the history
fix: avoid using `realpath`
  • Loading branch information
baltzell authored Sep 29, 2023
2 parents 0fd9f7b + 41e4194 commit 12bea47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/env.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

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

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

0 comments on commit 12bea47

Please sign in to comment.