diff options
author | Mario Trangoni <mjtrangoni@gmail.com> | 2021-01-31 14:27:45 +0100 |
---|---|---|
committer | Mario Trangoni <mjtrangoni@gmail.com> | 2021-01-31 14:27:45 +0100 |
commit | cb6e3b7d33923b177b0b8ffbe61d6c5b62c09001 (patch) | |
tree | 7ff026dafc0e8a47409e8eebef7476ed7e5b809f /replace.sh | |
parent | daeb82e33bfeb23d09f7782728f088bdc5d39ce5 (diff) | |
download | nx-libs-cb6e3b7d33923b177b0b8ffbe61d6c5b62c09001.tar.gz nx-libs-cb6e3b7d33923b177b0b8ffbe61d6c5b62c09001.tar.bz2 nx-libs-cb6e3b7d33923b177b0b8ffbe61d6c5b62c09001.zip |
shellcheck: Fix SC2148 issues
See,
$ find . -name "*.sh" | xargs shellcheck -i SC2148
In ./replace.sh line 1:
^-- SC2148: Tips depend on target shell and yours is unknown. Add a shebang or a 'shell' directive.
For more information:
https://www.shellcheck.net/wiki/SC2148 -- Tips depend on target shell and y...
Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
Diffstat (limited to 'replace.sh')
-rw-r--r-- | replace.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/replace.sh b/replace.sh index c2b187fda..28ce65aa4 100644 --- a/replace.sh +++ b/replace.sh @@ -1,3 +1,5 @@ +#!/bin/bash + # Copyright (C) 2013 Jan Engelhardt <jengelh@inai.de> # # This program is free software; you can redistribute it and/or modify |