ci: Make eslint wrapper script usable outside gitlab's CI

The eslint wrapper script is useful for development as well, but it currently
fails on systems where bash is not installed in /usr/bin.

Make it useful there as well by changing the shebang to use /usr/bin/env

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/655
This commit is contained in:
Marco Trevisan (Treviño) 2019-07-31 16:54:26 +02:00
parent 933c037c6e
commit 108ac7cf20

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/usr/bin/env bash
OUTPUT_REGULAR=reports/lint-regular-report.txt
OUTPUT_LEGACY=reports/lint-legacy-report.txt