We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec092f6 commit 9e4a126Copy full SHA for 9e4a126
1 file changed
build.ts
@@ -137,6 +137,7 @@ process.argv.forEach(arg => {
137
break;
138
case '-i':
139
interactive = doStdDeploy = doDedicated = true;
140
+ onlyOnRaspberryPi.push(arg);
141
delete process.env.SHLVL;
142
143
case '--launch':
@@ -205,7 +206,7 @@ if (treatAsRaspberryPi) {
205
206
const oldSettings: Record<string, string> = {};
207
208
lines.forEach(line => {
- const $ = /^\s*(\w+)\s*=\s*(\S+)/.exec(line);
209
+ const $ = /^\s*(\w+?)\s*=\s*(\S+)/.exec(line);
210
211
if ($)
212
oldSettings[$[1]] = settings[$[1]] = $[2];
0 commit comments