diff options
author | Wojtek Kosior <koszko@koszko.org> | 2021-07-02 11:48:28 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2021-07-02 11:48:28 +0200 |
commit | b428239892337553afb2b7236e9323c3e4d33d63 (patch) | |
tree | bba7685a874f65d6c6fcbca8184ebf8d23a05325 | |
parent | 008efedd2d7e565cc1fb758ac228d9eddbc4cc80 (diff) | |
download | browser-extension-b428239892337553afb2b7236e9323c3e4d33d63.tar.gz browser-extension-b428239892337553afb2b7236e9323c3e4d33d63.zip |
ignore some special files (emacs automatic backups) when building
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -197,7 +197,7 @@ main() { SCRIPTDIRS='background html common content' - SCRIPTS=$(find $SCRIPTDIRS -name '*.js') + SCRIPTS=$(find $SCRIPTDIRS -name '[^.#]*.js') for SCRIPT in $SCRIPTS; do add_exports $SCRIPT |