🎨 normalize echo statements throughout script
This commit is contained in:
parent
7ca196d9d4
commit
a0668acebb
1 changed files with 4 additions and 2 deletions
|
|
@ -18,11 +18,13 @@ echo >&2 " >>> extracting from ./nvim.appimage"
|
|||
./nvim.appimage --appimage-extract
|
||||
|
||||
echo >&2 " >>> extracted images version"
|
||||
./squashfs-root/AppRun --version
|
||||
# ./squashfs-root/AppRun --version
|
||||
echo >&2 $(./squashfs-root/AppRun --version)
|
||||
|
||||
echo >&2 " >>> moving squashfs-root"
|
||||
sudo mv squashfs-root /
|
||||
|
||||
echo >&2 " >>> exposing nvim globally"
|
||||
sudo ln -s /squashfs-root/AppRun /usr/bin/nvim
|
||||
echo $(nvim --version)
|
||||
|
||||
echo >&2 $(nvim --version)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue