diff options
author | Sarah Morgensen <iskarian@mgsn.dev> | 2021-07-26 19:56:48 -0700 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-10 11:44:51 -0500 |
commit | 27cc25e1a45f1d20fb5f32ff6bab5c646d497c50 (patch) | |
tree | b5949aa142c15194e5657f478f9bab931b37c6b2 /gnu | |
parent | 95cb49b4753d7648b7a0c3b2ec6893a5130b5741 (diff) | |
download | guix-27cc25e1a45f1d20fb5f32ff6bab5c646d497c50.tar.gz guix-27cc25e1a45f1d20fb5f32ff6bab5c646d497c50.zip |
gnu: pre-commit: Remove obsolete phase.
* gnu/packages/version-control.scm (pre-commit)[arguments]<#:phases>:
Remove 'make-gz-writable phase.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/version-control.scm | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index ffa4dbbbf6..3a4cced9d7 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1675,14 +1675,7 @@ visualize your public Git repositories on a web interface.") "not test_install_existing_hooks_no_overwrite" " and not test_uninstall_restores_legacy_hooks" " and not test_installed_from_venv" - " and not test_healthy_venv_creator"))))) - (add-before 'reset-gzip-timestamps 'make-gz-writable - (lambda* (#:key outputs #:allow-other-keys) - ;; Make sure .gz files are writable so that the - ;; 'reset-gzip-timestamps' phase can do its work. - (let ((out (assoc-ref outputs "out"))) - (for-each make-file-writable - (find-files out "\\.gz$")))))))) + " and not test_healthy_venv_creator")))))))) (native-inputs `(("git" ,git-minimal) ("python-covdefaults" ,python-covdefaults) |