Delete meson_post_install.py

Signed-off-by: tfuxu <73042332+tfuxu@users.noreply.github.com>
This commit is contained in:
tfuxu 2022-09-13 20:43:32 +00:00 committed by GitHub
parent 21710778e1
commit 4748a8a2f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +0,0 @@
#!/usr/bin/env python3
import os
import subprocess
build_root = os.environ.get("MESON_BUILD_ROOT")
source_root = os.environ.get("MESON_SOURCE_ROOT")
subprocess.call(
["mv", build_root, "gradience/constants.py",
source_root, "gradience/constants.py"]
)