Skip to content
This repository was archived by the owner on Oct 7, 2022. It is now read-only.

Commit 650d210

Browse files
committed
in some cases we need to force remove
1 parent 6a8a30d commit 650d210

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/pypi2nix/pip.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ in pkgs.stdenv.mkDerivation rec {
4343
--build ${pip_build_dir} \
4444
--no-binary :all:
4545
RETVAL=$?
46-
rm -R ${pip_build_dir}/*
46+
rm -rf ${pip_build_dir}/*
4747
[ $RETVAL -ne 0 ] && exit $RETVAL
4848
4949
cd ${project_dir}/wheelhouse

src/pypi2nix/stage1.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import pypi2nix.utils
88

9+
910
HERE = os.path.dirname(__file__)
1011

1112

0 commit comments

Comments
 (0)