We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 027d994 commit 8a16805Copy full SHA for 8a16805
action.yml
@@ -335,7 +335,7 @@ runs:
335
${{ github.action_path }}/setup-cvmfs.sh
336
shell: bash
337
env:
338
- THIS: ${{ github.action_path }}
+ ACTION_PATH: ${{ github.action_path }}
339
CVMFS_ALIEN_CACHE: ${{ inputs.cvmfs_alien_cache }}
340
CVMFS_ALT_ROOT_PATH: ${{ inputs.cvmfs_alt_root_path }}
341
CVMFS_AUTHZ_HELPER: ${{ inputs.cvmfs_authz_helper }}
setup-cvmfs.sh
@@ -27,11 +27,7 @@ else
27
exit 1
28
fi
29
30
-if [ "$1" == "local" ]; then
31
- . createConfig.sh
32
-else
33
- $THIS/createConfig.sh
34
-fi
+${ACTION_PATH}/createConfig.sh
35
36
echo "Run cvmfs_config setup"
37
sudo cvmfs_config setup
0 commit comments