Skip to content

Commit

Permalink
Fix shebang in shell files (#4863)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton authored Jul 8, 2024
1 parent 6de4459 commit 60faac5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fixtures/sftp/health-check.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# !/bin/bash
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
Expand Down Expand Up @@ -35,4 +35,4 @@ EOF
echo "Waiting for SFTP to be available..."
sleep 1
fi
done
done
4 changes: 2 additions & 2 deletions fixtures/webdav/health-check-nextcloud.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# !/bin/bash
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
Expand All @@ -18,4 +18,4 @@

set +ex

curl -sSf 'http://localhost/status.php' | grep '"installed":true' | grep '"maintenance":false' | grep '"needsDbUpgrade":false' || exit 1
curl -sSf 'http://localhost/status.php' | grep '"installed":true' | grep '"maintenance":false' | grep '"needsDbUpgrade":false' || exit 1

0 comments on commit 60faac5

Please sign in to comment.