mirror of
https://github.com/grafana/grafana.git
synced 2024-11-21 16:38:03 -06:00
Fix(devenv): use #!/usr/bin/env for bash scripts (#95117)
This solves problems on Linux distros like NixOS and BSDs like FreeBSD that don't provide `/bin/bash`, while also maintaining support for all other distros out there (AFAIK? even Alpine with its Busybox has /usr/bin/env).
This commit is contained in:
parent
d0481bb568
commit
b420fbe940
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
echo "Deleting previous bulk folders"
|
||||
find ./bulk-folders -type d -name "Bulk Folder*" -exec rm -rf "{}" \;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
blocks_dir=docker/blocks
|
||||
docker_dir=docker
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
bulkDashboard() {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user