Removed unused ls

This commit is contained in:
2020-01-24 19:29:16 +01:00
parent cbf12d08d5
commit f18a80caf3

View File

@@ -1,4 +1,4 @@
#!/bin/sh -l
#!/bin/sh
# e is for exiting the script automatically if a command fails, u is for exiting if a variable is not set, x is for showing the commands before they are executed
set -eux
@@ -21,9 +21,7 @@ EOF
echo "Installing prettier..."
npm install --silent --global prettier
echo "Prettifing files..."
prettier $INPUT_PRETTIER_OPTIONS || echo "Problem prettifing your files"
ls
prettier $INPUT_PRETTIER_OPTIONS
if ! git diff --quiet
then