You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[tool.poetry]
2
2
name = "video-grid-merge"
3
-
version = "0.2.24"
3
+
version = "0.2.25"
4
4
description = "This project allows you to use FFmpeg to arrange video files stored in a specified folder in an NxN grid layout and generate the output."
Copy file name to clipboardExpand all lines: scripts/create_post-commit.sh
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ create_post_commit() {
6
6
cat >"$1"<<EOF
7
7
#!/usr/bin/env bash
8
8
9
-
source "$SCRIPT_DIR/.venv/bin/activate"
10
-
poetry run python "$SCRIPT_DIR/ci/run_git_tag_base_pyproject.py"
9
+
source "$SCRIPT_DIR/../.venv/bin/activate"
10
+
poetry run python "$SCRIPT_DIR/../ci/run_git_tag_base_pyproject.py"
11
11
if [ \$? -ne 0 ]; then
12
12
printf "Error occurred in run_git_tag_base_pyproject.py. Exiting post-commit.\n"
13
13
exit 1
@@ -26,16 +26,16 @@ EOF
26
26
fi
27
27
}
28
28
29
-
if [ -f"$SCRIPT_DIR/.git/hooks/post-commit" ];then
30
-
read -p "$SCRIPT_DIR/.git/hooks/post-commit already exists. Do you want to create $SCRIPT_DIR/.git/hooks/post-commit.second instead? (y/N): " choice
29
+
if [ -f"$SCRIPT_DIR/../.git/hooks/post-commit" ];then
30
+
read -p "$SCRIPT_DIR/../.git/hooks/post-commit already exists. Do you want to create $SCRIPT_DIR/.git/hooks/post-commit.second instead? (y/N): " choice
0 commit comments