@budibase/cli 1.0.55 → 1.0.58-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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/cli",
3
- "version": "1.0.55",
3
+ "version": "1.0.58-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": "c4fdd5f469522855561f546ff820674f3b8ee5db"
36
+ "gitHead": "36ddce386048c32896af2e1f88c72cc56539195c"
37
37
  }
@@ -19,7 +19,6 @@ const BUDIBASE_SERVICES = ["app-service", "worker-service"]
19
19
  const ERROR_FILE = "docker-error.log"
20
20
  const FILE_URLS = [
21
21
  "https://raw.githubusercontent.com/Budibase/budibase/master/hosting/docker-compose.yaml",
22
- "https://raw.githubusercontent.com/Budibase/budibase/master/hosting/envoy.yaml",
23
22
  ]
24
23
  const DO_USER_DATA_URL = "http://169.254.169.254/metadata/v1/user-data"
25
24
 
@@ -141,11 +140,7 @@ async function stop() {
141
140
  async function update() {
142
141
  await checkDockerConfigured()
143
142
  checkInitComplete()
144
- if (
145
- await confirmation(
146
- "Do you wish to update you docker-compose.yaml and envoy.yaml?"
147
- )
148
- ) {
143
+ if (await confirmation("Do you wish to update you docker-compose.yaml?")) {
149
144
  await downloadFiles()
150
145
  }
151
146
  await handleError(async () => {