summaryrefslogtreecommitdiff
path: root/scripts/git-helper.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/git-helper.sh')
-rwxr-xr-xscripts/git-helper.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/git-helper.sh b/scripts/git-helper.sh
index 20c3aad..f6fafdd 100755
--- a/scripts/git-helper.sh
+++ b/scripts/git-helper.sh
@@ -30,6 +30,8 @@ cp -p "${script_dir}/../for-repo/README.md" .
sed -i -r .gitignore \
-e '/cbindgen-vendor/d'
grep -qE '\*\.spec\?' .gitignore || echo '*.spec?' >> .gitignore
+# remove sources file which uses dist-git and lookaside cache
+rm -f sources
# Add git remote
git remote add gitlab https://gitlab.com/bgstack15/librewolf-fedora-ff.git
bgstack15