use ln -sf instead of ln -s to fix ln: failed to create symbolic link '/home/rany/public_gopher/blog/blog': File exists errors
fix ln -sf line in make_gemini(). this is a typo caused by copying the same line from gopher function.
fixes the following errors:
-/usr/local/bin/bb: line 892: /home/rany/public_gemini/blog/index.gmi: No such file or directory
-chmod: cannot access '/home/rany/public_gemini/blog/index.gmi': No such file or directory
these fixes should only affect new users setting up bb.sh for the first time
* use `ln -sf` instead of `ln -s` to fix `ln: failed to create symbolic link '/home/rany/public_gopher/blog/blog': File exists` errors
* fix `ln -sf` line in `make_gemini()`. this is a typo caused by copying the same line from gopher function.
- fixes the following errors:
-`/usr/local/bin/bb: line 892: /home/rany/public_gemini/blog/index.gmi: No such file or directory`
-`chmod: cannot access '/home/rany/public_gemini/blog/index.gmi': No such file or directory`
these fixes should only affect new users setting up bb.sh for the first time
ln -sf
instead ofln -s
to fixln: failed to create symbolic link '/home/rany/public_gopher/blog/blog': File exists
errorsln -sf
line inmake_gemini()
. this is a typo caused by copying the same line from gopher function.-
/usr/local/bin/bb: line 892: /home/rany/public_gemini/blog/index.gmi: No such file or directory
-
chmod: cannot access '/home/rany/public_gemini/blog/index.gmi': No such file or directory
these fixes should only affect new users setting up bb.sh for the first time
106309c46f
into master 2 years agogreat, thanks!
106309c46f
.