We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 046bbb3 commit 615e5ddCopy full SHA for 615e5dd
3 files changed
.gitignore
@@ -1,7 +1,7 @@
1
.idea/
2
.DS_Store
3
output/
4
-dist/
+/dist/
5
6
# Binaries for programs and plugins
7
*.exe
@@ -25,4 +25,5 @@ bin/*
25
data/
26
log/
27
lang/
28
-public/dist/
+public/dist/*
29
+!public/dist/README.md
build.sh
@@ -27,7 +27,8 @@ ldflags="\
FetchWebBuild() {
curl -L https://codeload.github.com/alist-org/web-dist/tar.gz/refs/heads/main -o web-dist-main.tar.gz
tar -zxvf web-dist-main.tar.gz
30
- mv web-dist-main/dist public
+ rm -rf public/dist
31
+ mv -f web-dist-main/dist public
32
rm -rf web-dist-main web-dist-main.tar.gz
33
}
34
public/dist/README.md
@@ -0,0 +1 @@
+## Put dist of frontend here.
0 commit comments