Skip to content

Commit

Permalink
Renames testruns and quotes variables
Browse files Browse the repository at this point in the history
  • Loading branch information
joergi committed Jan 5, 2025
1 parent 9d608f6 commit 373518d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch: {}

jobs:
bash-linux:
testing_superexport_on_bash-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch: {}

jobs:
mac:
testing_superexport_on_mac:
runs-on: macos-13
steps:
- uses: actions/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions superexport.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ fi
######################################################
# check if superexportfolder exist, if not create it #
# ####################################################
if [ ! -d $superexportfolder ]; then
mkdir $superexportfolder
if [ ! -d "$superexportfolder" ]; then
mkdir "$superexportfolder"
fi

#######################################################
# set the secretname to lowercase and put a prefix on #
#######################################################
## todo check if $4 is set or not
secretname=$(echo $1 | tr '[:upper:]' '[:lower:]')
secretname=$(echo "$1" | tr '[:upper:]' '[:lower:]')
secretname=$4-$secretname

###########################################################
Expand Down

0 comments on commit 373518d

Please sign in to comment.