summaryrefslogtreecommitdiff
path: root/bundle-update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bundle-update.sh')
-rwxr-xr-xbundle-update.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/bundle-update.sh b/bundle-update.sh
deleted file mode 100755
index 28d7185..0000000
--- a/bundle-update.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-wd=$(dirname $0)
-
-cd "$wd"
-echo "Syncing submodules..."
-git submodule sync --recursive
-echo "Updating submodules to latest upstream..."
-git submodule update --init --recursive --remote
-
-# Clean YCM to ensure a fresh state if needed
-if [ -d "pack/bundle/start/YouCompleteMe" ]; then
- echo "Cleaning YouCompleteMe..."
- (cd pack/bundle/start/YouCompleteMe && git clean -fdx && git checkout .)
-fi
-
-echo "Staging changes..."
-git add .gitmodules bundle-update.sh pack/bundle/start/
-git commit -m "Bundle update $(date)"
-echo "Update complete."