mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 17:59:46 +00:00
Fixed due to https://github.com/nushell/nushell/pull/13915
This commit is contained in:
parent
ceac9cefe5
commit
ca46dde69c
@ -63,8 +63,11 @@ def "main fix_web_assets" []: nothing -> nothing {
|
||||
mkdir wwwroot/system
|
||||
|
||||
# Copy the web assets from the first RID to the source project:
|
||||
let source_path: glob = $"bin/release/net8.0/($rid)/publish/wwwroot/_content/*"
|
||||
cp --recursive --force --update $source_path wwwroot/system/
|
||||
let source_paths = glob --depth 99 bin/release/net8.0/($rid)/publish/wwwroot/_content/*
|
||||
|
||||
for source_path in $source_paths {
|
||||
cp --recursive --force --update $source_path wwwroot/system/
|
||||
}
|
||||
}
|
||||
|
||||
def "main publish" []: nothing -> nothing {
|
||||
|
Loading…
Reference in New Issue
Block a user