Skip to content

Commit 690ae04

Browse files
authored
feat: Set default install path to ~/winboat (#335)
1 parent dab50fb commit 690ae04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/views/SetupUI.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ const $router = useRouter();
692692
const specs = ref<Specs>({ ...defaultSpecs });
693693
const currentStepIdx = ref(0);
694694
const currentStep = computed(() => steps[currentStepIdx.value]);
695-
const installFolder = ref("");
695+
const installFolder = ref(path.join(os.homedir(), 'winboat'));
696696
const windowsVersion = ref<WindowsVersionKey>("11");
697697
const windowsLanguage = ref("English");
698698
const customIsoPath = ref("");

0 commit comments

Comments
 (0)