Skip to content

Commit 95f61d1

Browse files
committed
let AI try to fix the escape problem
1 parent cfbf370 commit 95f61d1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Ellabit/Ellabit.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@
112112

113113
<!-- Linux / macOS version -->
114114
<Exec Condition="'$(OS)' != 'Windows_NT'"
115-
Command='bash -c "set -e; frameworkDir=\"$(PublishDir)/wwwroot/_framework\"; mkdir -p \"$frameworkDir\"; shopt -s nullglob; jsonFile=\"$frameworkDir/framework_manifest.json\"; echo [ > \"$jsonFile\"; first=true; for dll in \"$frameworkDir\"/*.dll; do filename=${dll##*/}; name=${filename%%.*}; if [ \"$first\" = true ]; then first=false; else echo , >> \"$jsonFile\"; fi; echo { \\"Name\\": \\"$name\\", \\"File\\": \\"$filename\\" } >> \"$jsonFile\"; done; echo ] >> \"$jsonFile\""' />
115+
Command='bash -c "set -e; frameworkDir=$(PublishDir)/wwwroot/_framework; mkdir -p \"$frameworkDir\"; shopt -s nullglob; jsonFile=\"$frameworkDir/framework_manifest.json\"; echo [ > \"$jsonFile\"; first=true; for dll in \"$frameworkDir\"/*.dll; do filename=${dll##*/}; name=${filename%%.*}; if [ \"$first\" = true ]; then first=false; else echo , >> \"$jsonFile\"; fi; echo { \\"Name\\": \\"$name\\", \\"File\\": \\"$filename\\" } >> \"$jsonFile\"; done; echo ] >> \"$jsonFile\""' />
116+
116117
</Target>
117118
<ItemGroup>
118119
<EmbeddedResource Include="framework_manifest.json" />

0 commit comments

Comments
 (0)