File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,6 @@ _request() {
35
35
# Check that /ghost/ redirects to setup (the image is unconfigured by default)
36
36
ghostVersion=" $( docker inspect --format ' {{range .Config.Env}}{{ . }}{{"\n"}}{{end}}' " $serverImage " | awk -F= ' $1 == "GHOST_VERSION" { print $2 }' ) "
37
37
case " $ghostVersion " in
38
- 2.* ) _request GET ' /ghost/api/v2/admin/authentication/setup/' | grep ' status":false' > /dev/null ;;
39
- 3.* ) _request GET ' /ghost/api/v3/admin/authentication/setup/' | grep ' status":false' > /dev/null ;;
40
38
4.* ) _request GET ' /ghost/api/v4/admin/authentication/setup/' | grep ' status":false' > /dev/null ;;
41
- 5.* ) _request GET ' /ghost/api/admin/authentication/setup/' | grep ' status":false' > /dev/null ;;
42
- * ) echo " no tests for version ${ghostVersion} " && exit 1 ;;
39
+ * ) _request GET ' /ghost/api/admin/authentication/setup/' | grep ' status":false' > /dev/null ;;
43
40
esac
You can’t perform that action at this time.
0 commit comments