@budibase/cli 1.0.96 → 1.0.98-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/hosting/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.98-alpha.1",
|
|
4
4
|
"description": "Budibase CLI, for developers, self hosting and migrations.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"eslint": "^7.20.0"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "b08461e611911f91162f643132406603646b1bde"
|
|
37
37
|
}
|
package/src/hosting/index.js
CHANGED
|
@@ -35,7 +35,7 @@ async function downloadFiles() {
|
|
|
35
35
|
|
|
36
36
|
async function checkDockerConfigured() {
|
|
37
37
|
const error =
|
|
38
|
-
"docker/docker-compose has not been installed, please follow instructions at: https://docs.budibase.com/
|
|
38
|
+
"docker/docker-compose has not been installed, please follow instructions at: https://docs.budibase.com/docs/docker-compose"
|
|
39
39
|
const docker = await lookpath("docker")
|
|
40
40
|
const compose = await lookpath("docker-compose")
|
|
41
41
|
if (!docker || !compose) {
|