mirror of
https://github.com/scopatz/nanorc
synced 2024-11-22 16:45:40 +01:00
Merge pull request #143 from SamuelEnglard/fix-syntax-issues
Fix syntax issues
This commit is contained in:
commit
680dd50c7f
13
install.sh
13
install.sh
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
function _fetch_sources() {
|
_fetch_sources(){
|
||||||
wget -O /tmp/nanorc.zip https://github.com/scopatz/nanorc/archive/master.zip
|
wget -O /tmp/nanorc.zip https://github.com/scopatz/nanorc/archive/master.zip
|
||||||
if [ ! -d ~/.nano/ ]
|
if [ ! -d ~/.nano/ ]
|
||||||
then
|
then
|
||||||
@ -15,7 +15,7 @@ function _fetch_sources() {
|
|||||||
rm /tmp/nanorc.zip
|
rm /tmp/nanorc.zip
|
||||||
}
|
}
|
||||||
|
|
||||||
function _update_nanorc() {
|
_update_nanorc(){
|
||||||
if [ ! -f ~/.nanorc ]
|
if [ ! -f ~/.nanorc ]
|
||||||
then
|
then
|
||||||
touch ~/.nanorc
|
touch ~/.nanorc
|
||||||
@ -29,7 +29,7 @@ function _update_nanorc() {
|
|||||||
done < ~/.nano/nanorc
|
done < ~/.nano/nanorc
|
||||||
}
|
}
|
||||||
|
|
||||||
function _update_nanorc_lite() {
|
_update_nanorc_lite(){
|
||||||
sed -i '/include "\/usr\/share\/nano\/\*\.nanorc"/i include "~\/.nano\/*.nanorc"' "${NANORC_FILE}"
|
sed -i '/include "\/usr\/share\/nano\/\*\.nanorc"/i include "~\/.nano\/*.nanorc"' "${NANORC_FILE}"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,8 +45,9 @@ case "$1" in
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
_fetch_sources;
|
_fetch_sources;
|
||||||
if [[ $UPDATE_LITE ]]; then
|
if [ $UPDATE_LITE ];
|
||||||
_update_nanorc_lite;
|
then
|
||||||
|
_update_nanorc_lite
|
||||||
else
|
else
|
||||||
_update_nanorc;
|
_update_nanorc
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user