Skip to content

Commit

Permalink
increment version to 0.5a17
Browse files Browse the repository at this point in the history
  • Loading branch information
sebovzeoueb committed Feb 24, 2025
1 parent 06e50aa commit 6ae3beb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bun_installer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
"build_linux": "bun run build_zip && bun run build_client && bun build ./index.tsx --compile --target=bun-linux-x64 --outfile dist/linux/concierge",
"build_mac": "bun run build_zip && bun run build_client && bun build ./index.tsx --compile --target=bun-darwin-arm64 --outfile dist/mac/concierge"
},
"version": "0.5a16"
"version": "0.5a17"
}
3 changes: 2 additions & 1 deletion bun_installer/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ const handlePyPi = async (packageUrlName: string, packageName: string, tomlData:
await $`rm -rf ${path.join(packageDir, "dist")}`
console.log(packageDir)
await exec("python3 -m build", {cwd: packageDir})
await runPython(`twine upload ${path.join(packageDir, "dist")}/* -u __token__ -p ${pyPiKey}`)
// single backslashes get stripped out by the command line so we need to double them
await runPython(`twine upload ${path.join(packageDir, "dist").replace("\\", "\\\\")}/* -u __token__ -p ${pyPiKey}`)
}
await handlePyPi("concierge-util", "concierge_util", conciergeUtilPyProject)
await handlePyPi("isi-util", "isi_util", isiUtilPyProject)

0 comments on commit 6ae3beb

Please sign in to comment.