Skip to content

Commit

Permalink
fix: avoid using realpath
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Sep 28, 2023
1 parent 04558ca commit 41e4194
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 41e4194

Please sign in to comment.