Few small freebsd fixes (#319)

* Use python 3.7 which is the default.

* Fix typo (missing space before closing ]):

00:04:22.942  + [ -f /usr/ports/UPDATING]
00:04:22.942  [: missing ]

* GC unneded "cd resource". php.sh is included into resources/ngnix.sh, which does
cd resources as the first step by itself.
This commit is contained in:
Maksym Sobolyev
2020-06-11 09:41:50 -07:00
committed by GitHub
parent e053b3ada0
commit f6ce7e9ae5
3 changed files with 2 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ pkg upgrade --yes
#Update the ports
if [ .$portsnap_enabled = .'true' ]; then
if [ -f /usr/ports/UPDATING]; then
if [ -f /usr/ports/UPDATING ]; then
portsnap fetch && portsnap update
echo "/usr/ports updated"
else