Skip to content

Commit

Permalink
Swap the school from master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
Olical committed Nov 8, 2024
1 parent b9d21ac commit bc8907e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/school
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ PREFIX="/tmp/conjure-school"

if [ ! -d $PREFIX ]; then
echo "Downloading Conjure into $PREFIX..."
curl -LJ https://github.com/Olical/conjure/archive/master.zip -o $PREFIX.zip
curl -LJ https://github.com/Olical/conjure/archive/main.zip -o $PREFIX.zip
unzip -qq $PREFIX.zip -d $PREFIX
rm $PREFIX.zip
else
echo "$PREFIX already exists, no need to download."
fi

nvim \
--cmd "set rtp+=$PREFIX/conjure-master" \
--cmd "source $PREFIX/conjure-master/plugin/conjure.vim" \
-c "au VimEnter * ++nested ConjureSchool" \
&& echo "I hope you had a great time! Cleaning up $PREFIX and exiting." \
&& rm -rf $PREFIX
--cmd "set rtp+=$PREFIX/conjure-main" \
--cmd "source $PREFIX/conjure-main/plugin/conjure.vim" \
-c "au VimEnter * ++nested ConjureSchool" &&
echo "I hope you had a great time! Cleaning up $PREFIX and exiting." &&
rm -rf $PREFIX

0 comments on commit bc8907e

Please sign in to comment.