Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions faircmakemodules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
- CMake
- "GCC-Toolchain:(?!osx)"
- alibuild-recipe-tools
prefer_system_check: |
if [ ! -z "$FAIRCMAKEMODULES_VERSION" ]; then

Check notice on line 10 in faircmakemodules.sh

View workflow job for this annotation

GitHub Actions / alidistlint

Use -n instead of ! -z. [SC2236]

Check notice on line 10 in faircmakemodules.sh

View workflow job for this annotation

GitHub Actions / alidistlint

Missing script shebang. Use exactly "#!/bin/bash -e" to match aliBuild environment. You may see spurious errors until you fix the shebang. [ali:bad-shebang]
exit 0
fi
exit 1
---
#!/bin/sh

Expand Down
2 changes: 0 additions & 2 deletions geant4_vmc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@ prefer_system_check: |
ls $GEANT4_VMC_ROOT/bin > /dev/null && \
ls $GEANT4_VMC_ROOT/lib/libg4root.so > /dev/null && \
ls $GEANT4_VMC_ROOT/lib/libgeant4vmc.so> /dev/null && \
ls $GEANT4_VMC_ROOT/lib/libmtroot.so > /dev/null && \
ls $GEANT4_VMC_ROOT/include/g4root > /dev/null && \
ls $GEANT4_VMC_ROOT/include/geant4vmc > /dev/null && \
ls $GEANT4_VMC_ROOT/include/mtroot > /dev/null && \
true
---
#!/bin/bash -e
Expand Down
5 changes: 5 additions & 0 deletions rootegpythia6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
LD_LIBRARY_PATH: "$ROOTEGPYTHIA6_ROOT/lib"
ROOT_INCLUDE_PATH: "$ROOTEGPYTHIA6_ROOT/include"
CMAKE_MODULE_PATH: "$ROOTEGPYTHIA6_ROOT/lib/cmake/ROOTEGPythia6/Modules"
prefer_system_check: |
if [ ! -z "$ROOTEGPYTHIA6_VERSION" ]; then

Check notice on line 17 in rootegpythia6.sh

View workflow job for this annotation

GitHub Actions / alidistlint

Use -n instead of ! -z. [SC2236]

Check notice on line 17 in rootegpythia6.sh

View workflow job for this annotation

GitHub Actions / alidistlint

Missing script shebang. Use exactly "#!/bin/bash -e" to match aliBuild environment. You may see spurious errors until you fix the shebang. [ali:bad-shebang]
exit 0
fi
exit 1
---
#!/bin/bash -e

Expand Down