Skip to content

Commit

Permalink
Lfs and requirements update
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroCabrera committed Apr 14, 2024
1 parent 4fa8cd0 commit babe17f
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 9 deletions.
3 changes: 3 additions & 0 deletions hooks/post-checkout
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-checkout.\n"; exit 2; }
git lfs post-checkout "$@"
3 changes: 3 additions & 0 deletions hooks/post-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-commit.\n"; exit 2; }
git lfs post-commit "$@"
3 changes: 3 additions & 0 deletions hooks/post-merge
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-merge.\n"; exit 2; }
git lfs post-merge "$@"
3 changes: 3 additions & 0 deletions hooks/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/pre-push.\n"; exit 2; }
git lfs pre-push "$@"
Binary file not shown.
File renamed without changes.
4 changes: 0 additions & 4 deletions requirements/requirements-3dsmax.txt

This file was deleted.

4 changes: 0 additions & 4 deletions requirements/requirements-maya.txt

This file was deleted.

2 changes: 1 addition & 1 deletion starterUI.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pip install -r requirements/requirements-standalone.txt
pip install -r requirements.txt
python.exe %cd%/pyflow.py
pause

0 comments on commit babe17f

Please sign in to comment.