diff --git a/build_scripts/assets/deb/postinst.sh b/build_scripts/assets/deb/postinst.sh index b4c2266515da..504fe92c4438 100644 --- a/build_scripts/assets/deb/postinst.sh +++ b/build_scripts/assets/deb/postinst.sh @@ -4,3 +4,4 @@ set -e ln -s /opt/chia/resources/app.asar.unpacked/daemon/chia /usr/bin/chia || true +ln -s /opt/chia/chia-blockchain /usr/bin/chia-blockchain || true diff --git a/build_scripts/assets/deb/prerm.sh b/build_scripts/assets/deb/prerm.sh index c4df691d591a..e6cc9fddb3d5 100644 --- a/build_scripts/assets/deb/prerm.sh +++ b/build_scripts/assets/deb/prerm.sh @@ -4,3 +4,4 @@ set -e unlink /usr/bin/chia || true +unlink /usr/bin/chia-blockchain || true diff --git a/build_scripts/assets/rpm/postinst.sh b/build_scripts/assets/rpm/postinst.sh index 6e6d7f00c51b..00f9dd679ced 100644 --- a/build_scripts/assets/rpm/postinst.sh +++ b/build_scripts/assets/rpm/postinst.sh @@ -4,3 +4,4 @@ set -e ln -s /opt/chia/resources/app.asar.unpacked/daemon/chia /usr/bin/chia || true +ln -s /opt/chia/chia-blockchain /usr/bin/chia-blockchain || true diff --git a/build_scripts/assets/rpm/prerm.sh b/build_scripts/assets/rpm/prerm.sh index 210e44c86720..76eb29239820 100644 --- a/build_scripts/assets/rpm/prerm.sh +++ b/build_scripts/assets/rpm/prerm.sh @@ -4,3 +4,4 @@ set -e unlink /usr/bin/chia || true +unlink /usr/bin/chia-blockchain || true