Skip to content

Commit 7d5af7b

Browse files
committed
Fix initvenv allow acces with chmod
1 parent 1cd5d26 commit 7d5af7b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build-and-publish-wheels.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ jobs:
8989
9090
echo "Copying binary from src/initvenv/bin/${{ matrix.folder }}"
9191
cp "src/initvenv/bin/${{ matrix.folder }}/initvenv" "src/initvenv/scripts/initvenv"
92-
echo "✓ Copied initvenv to src/initvenv/scripts/initvenv"
92+
chmod +x "src/initvenv/scripts/initvenv"
93+
echo "✓ Copied and set executable initvenv to src/initvenv/scripts/initvenv"
9394
9495
- name: Install build tools
9596
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "initvenv"
7-
version = "0.2.0a4"
7+
version = "0.2.0a5"
88
description = "Cross-language CLI tool written in C# to initialize Python virtual environments instantly with one command: 'initvenv'."
99
readme = { file = "README.md", content-type = "text/markdown", charset = "utf-8" }
1010
license = "GPL-3.0"

0 commit comments

Comments
 (0)