mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
Fix for #2401
This commit is contained in:
parent
dd0fa48345
commit
5eee305a33
1 changed files with 6 additions and 2 deletions
8
Makefile
8
Makefile
|
|
@ -143,11 +143,15 @@ cross-compile-all:
|
||||||
make cross-compile-linux-arm32v7
|
make cross-compile-linux-arm32v7
|
||||||
make cross-compile-linux-arm32v6
|
make cross-compile-linux-arm32v6
|
||||||
|
|
||||||
# ensures a file is present in ui/v2.5/build since this is required
|
.PHONY: touch-ui
|
||||||
# for the embedded ui library
|
|
||||||
touch-ui:
|
touch-ui:
|
||||||
|
ifndef IS_WIN_SHELL
|
||||||
@mkdir -p ui/v2.5/build
|
@mkdir -p ui/v2.5/build
|
||||||
@touch ui/v2.5/build/index.html
|
@touch ui/v2.5/build/index.html
|
||||||
|
else
|
||||||
|
@if not exist "ui\\v2.5\\build" mkdir ui\\v2.5\\build
|
||||||
|
@type nul >> ui/v2.5/build/index.html
|
||||||
|
endif
|
||||||
|
|
||||||
# Regenerates GraphQL files
|
# Regenerates GraphQL files
|
||||||
generate: generate-backend generate-frontend
|
generate: generate-backend generate-frontend
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue