[gnome-shell] ci: Make eslint wrapper script usable outside gitlab's CI



commit 108ac7cf20578c8e23b392936313e3169b4a6906
Author: Marco Trevisan (Treviño) <mail 3v1n0 net>
Date:   Wed Jul 31 16:54:26 2019 +0200

    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

 .gitlab-ci/run-eslint.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/.gitlab-ci/run-eslint.sh b/.gitlab-ci/run-eslint.sh
index 0f745a58d..82642d4f0 100755
--- a/.gitlab-ci/run-eslint.sh
+++ b/.gitlab-ci/run-eslint.sh
@@ -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


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]