File tree 1 file changed +2
-0
lines changed
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change 63
63
$distPath = if ("${{ github.event.inputs.build_type }}" -eq "RELEASE") { "build\release\dist" } else { "build\dev\dist" }
64
64
New-Item -ItemType Directory -Force -Path "$distPath\src\gguf-py"
65
65
Copy-Item -Path "src\gguf-py\*" -Destination "$distPath\src\gguf-py" -Recurse
66
+ Copy-Item -Path "src\convert_hf_to_gguf.py" -Destination "$distPath\src"
66
67
Copy-Item -Path "src\convert_lora_to_gguf.py" -Destination "$distPath\src"
67
68
Copy-Item -Path "src\convert_lora_to_ggml.py" -Destination "$distPath\src"
68
69
72
73
distPath=$(if [ "${{ github.event.inputs.build_type }}" = "RELEASE" ]; then echo "build/release/dist"; else echo "build/dev/dist"; fi)
73
74
mkdir -p $distPath/src/gguf-py
74
75
cp -R src/gguf-py/* $distPath/src/gguf-py/
76
+ cp src\convert_hf_to_gguf.py $distPath/src/
75
77
cp src/convert_lora_to_gguf.py $distPath/src/
76
78
cp src/convert_lora_to_ggml.py $distPath/src/
77
79
You can’t perform that action at this time.
0 commit comments