Skip to content

Commit

Permalink
style(lint): fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jpeedroza committed May 10, 2022
1 parent 505688e commit a74d00d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions vkpr/aws/rds/snapshot/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ LIB_RESOURCES="../../../../lib/functions/*"

#bash-build:
mkdir -p $BIN_FOLDER/src
#shellcheck disable=SC2086
cp $LIB_RESOURCES $BIN_FOLDER/src
cp -r src/* $BIN_FOLDER
mv $BIN_FOLDER/$ENTRY_POINT_UNIX $BIN_FOLDER/$BINARY_NAME_UNIX
Expand Down
2 changes: 1 addition & 1 deletion vkpr/aws/rds/snapshot/src/unix/formula/formula.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ runFormula() {
validateAwsRegion "$AWS_REGION"

aws rds create-db-snapshot \
--db-instance-identifier $RDS_INSTANCE_NAME \
--db-instance-identifier "$RDS_INSTANCE_NAME" \
--db-snapshot-identifier mydbsnapshot 1> /dev/null && echo "Snapshot created"
}
1 change: 1 addition & 0 deletions vkpr/create/formula/src/unix/formula/formula.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ LIB_RESOURCES="${path}lib/functions/*"
#bash-build:
mkdir -p $\BIN_FOLDER/src
#shellcheck disable=SC2086
cp $\LIB_RESOURCES $\BIN_FOLDER/src
cp -r src/* $\BIN_FOLDER
mv $\BIN_FOLDER/$\ENTRY_POINT_UNIX $\BIN_FOLDER/$\BINARY_NAME_UNIX
Expand Down

0 comments on commit a74d00d

Please sign in to comment.