Windows路径修复

This commit is contained in:
zhbaor 2024-09-23 18:08:21 +08:00
parent c374f288b0
commit d9f1aae27c
4 changed files with 15 additions and 16 deletions

View file

@ -1,10 +1,13 @@
<script setup>
const steps = ref([
{ title: '设置Git LFS', command: ['git/bin/git lfs install'] },
{ title: '安装pip', command: ['python/python -m ensurepip --default-pip --no-warn-script-location'] },
{ title: '设置Git LFS', command: ['git\\bin\\git lfs install'] },
{
title: '安装pip',
command: ['python\\python -m ensurepip --default-pip --no-warn-script-location']
},
{
title: '下载代码',
command: ['git/bin/git clone https://git-cf.zhaozuohong.vip/mower-ng/mower-ng.git --branch slow']
command: ['git\\bin\\git clone https://git-cf.zhaozuohong.vip/mower-ng/mower-ng.git --branch slow']
}
])
provide('steps', steps)