aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/update-bower.sh
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2021-02-03 19:17:50 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2021-02-03 19:17:50 -0500
commit475d074fd74425efbe783fad08f97f2df0c4909f (patch)
tree2acdae53999b3c74b716efa4edb5b40311fa356a /scripts/update-bower.sh
parentcd502d52787f666fff3254d7d7e7578930c813c2 (diff)
parent3a0d66f07b112b6d2bdc2b57bbf717a89a351ce6 (diff)
Update upstream source from tag 'upstream/8.1.2'
Update to upstream version '8.1.2' with Debian dir e5e966a9e6010ef70618dc9a61558fa4db35aceb
Diffstat (limited to 'scripts/update-bower.sh')
-rwxr-xr-xscripts/update-bower.sh57
1 files changed, 0 insertions, 57 deletions
diff --git a/scripts/update-bower.sh b/scripts/update-bower.sh
deleted file mode 100755
index fbf69a0..0000000
--- a/scripts/update-bower.sh
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/bin/bash
-
-# Update all bower packages
-bower update
-
-# Link bootstrap3 theme to bootstrap
-pushd nikola/data/themes/bootstrap3/assets/js/
-ln -sf ../../../../../../bower_components/bootstrap/dist/js/*js .
-rm npm.js
-git add .
-popd
-
-pushd nikola/data/themes/bootstrap3/assets/css/
-ln -sf ../../../../../../bower_components/bootstrap/dist/css/* .
-git add .
-popd
-
-pushd nikola/data/themes/bootstrap3/assets/fonts/
-ln -sf ../../../../../../bower_components/bootstrap/dist/fonts/* .
-git add .
-popd
-
-# Link moment.js to base theme
-pushd nikola/data/themes/base/assets/js
-ln -sf ../../../../../../bower_components/moment/min/moment-with-locales.min.js .
-git add moment-with-locales.min.js
-popd
-
-# Link jQuery to bootstrap theme
-pushd nikola/data/themes/bootstrap3/assets/js
-ln -sf ../../../../../../bower_components/jquery/dist/* .
-git add .
-popd
-
-
-# Link colorbox into bootstrap theme
-pushd nikola/data/themes/bootstrap3/assets/js
-ln -sf ../../../../../../bower_components/jquery-colorbox/jquery.colorbox.js .
-git add jquery.colorbox.js
-popd
-
-pushd nikola/data/themes/bootstrap3/assets/js/colorbox-i18n
-ln -sf ../../../../../../../bower_components/jquery-colorbox/i18n/* .
-git add .
-popd
-
-pushd nikola/data/themes/bootstrap3/assets/css/
-ln -sf ../../../../../../bower_components/jquery-colorbox/example3/colorbox.css .
-git add colorbox.css
-popd
-
-pushd nikola/data/themes/bootstrap3/assets/css/images/
-ln -sf ../../../../../../../bower_components/jquery-colorbox/example3/images/* .
-git add .
-popd
-
-scripts/generate_symlinked_list.sh