-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a094851
commit 2d791b8
Showing
3 changed files
with
44 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
# | ||
# Create the software table. | ||
# | ||
# The software table is generated on each deploy on GitHub actions, | ||
# so you have to do that manually if you want to view it locally: | ||
# | ||
# Usage: | ||
# | ||
# ./scripts/create_software_table.sh | ||
|
||
if [[ "$PWD" =~ scripts$ ]]; then | ||
echo "FATAL ERROR." | ||
echo "Please run the script from the project root. " | ||
echo "Present working director: $PWD" | ||
echo " " | ||
echo "Tip: like this" | ||
echo " " | ||
echo " ./scripts/create_software_table.sh" | ||
echo " " | ||
exit 42 | ||
fi | ||
|
||
python3 scripts/sw_table_md_creator.py -i https://export.uppmax.uu.se/staff/software_table_ci/software_table.json -o docs/software/software-table.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters