no message

This commit is contained in:
kuaifan 2025-05-17 20:16:13 +08:00
parent a130c049bf
commit b2d9568deb
2 changed files with 3 additions and 2 deletions

2
cmd
View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
#cached execution #cached execution
if [ -z "$CACHED_EXECUTION" ]; then if [ -z "$CACHED_EXECUTION" ] && [ "$1" == "update" ]; then
cat "$0" > ._cmd cat "$0" > ._cmd
chmod +x ._cmd chmod +x ._cmd
export CACHED_EXECUTION=1 export CACHED_EXECUTION=1

View File

@ -1193,8 +1193,9 @@ export default {
case 'appstore': case 'appstore':
this.$store.dispatch("openMicroApp", { this.$store.dispatch("openMicroApp", {
name: 'appstore', name: 'appstore',
url: 'http://localhost:5173/', url: 'appstore/web/',
disableScopecss: true, disableScopecss: true,
autoDarkTheme: false,
}); });
break; break;
} }