resulgit 1.0.17 → 1.0.18
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 +1 -1
- package/resulgit.js +2 -2
package/package.json
CHANGED
package/resulgit.js
CHANGED
|
@@ -68,7 +68,7 @@ function loadConfig() {
|
|
|
68
68
|
const s = fs.readFileSync(file, 'utf8')
|
|
69
69
|
return JSON.parse(s)
|
|
70
70
|
} catch {
|
|
71
|
-
return { server: '
|
|
71
|
+
return { server: 'https://gitu.resulticks.com', token: '', workspaceRoot: path.join(os.homedir(), 'resulgit-workspace') }
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
|
|
@@ -82,7 +82,7 @@ function saveConfig(update) {
|
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
function getServer(opts, cfg) {
|
|
85
|
-
return opts.server || cfg.server || '
|
|
85
|
+
return opts.server || cfg.server || 'https://gitu.resulticks.com'
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
function getToken(opts, cfg) {
|