Skip to content

Commit

Permalink
feat: 🎸 add app type
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxingyun2010 committed Aug 1, 2024
1 parent b735977 commit 4c93545
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const launchApp = () => {
param += `&orderNo=${Search.getDefault('orderNo', '')}`;
}

if (type === '1015') {
if (type === '1015' || type === '1022') {
param += `&carNo=${Search.getDefault('carNo', '')}`;
}

Expand Down
8 changes: 4 additions & 4 deletions scripts/publish.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash

echo 'publish with proxy:'
git config --global http.https://github.com.proxy http://127.0.0.1:10080
git config --global https.https://github.com.proxy https://127.0.0.1:10080
# git config --global http.https://github.com.proxy http://127.0.0.1:10080
# git config --global https.https://github.com.proxy https://127.0.0.1:10080
yarn np
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy
# git config --global --unset http.https://github.com.proxy
# git config --global --unset https.https://github.com.proxy

0 comments on commit 4c93545

Please sign in to comment.