We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38ec03f commit ddc9cc2Copy full SHA for ddc9cc2
docs/.vitepress/components/CliGenerator.vue
@@ -379,6 +379,11 @@ const craftCommandString = computed(() => {
379
str += 'debug: true\n';
380
}
381
382
+ if (preBuilt.value) {
383
+ str += 'download-options:\n';
384
+ str += ' prefer-pre-built: true\n';
385
+ }
386
+
387
str += '{{position_hold}}';
388
389
if (enableUPX.value) {
@@ -387,9 +392,6 @@ const craftCommandString = computed(() => {
392
if (zts.value) {
393
str += ' enable-zts: true\n';
394
390
- if (preBuilt.value) {
391
- str += ' prefer-pre-built: true\n';
- }
395
396
if (!str.endsWith('{{position_hold}}')) {
397
str = str.replace('{{position_hold}}', 'build-options:\n');
0 commit comments