This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/themes/zuitedesk/js/bootstrap.min.sh

14 lines
307 B
Bash

#!/bin/sh
jscript="bootstrap.min.js"
original="$jscript.original"
if [ -f "$jscript" ]
then
[ ! -f "$original" ] && cp "$jscript" "$original" && echo "Keeping original file in $original"
sed -i ".bak" 's/\(jQuery\)/\$jq/g' "$jscript"
echo "Replacing $jscript"
else
echo "File $jscript not found"
fi