From a26de957f517cb030cb5084d16dd9974709dd7cd Mon Sep 17 00:00:00 2001 From: Lai-YT <381xvmvbib@gmail.com> Date: Mon, 11 Sep 2023 09:04:39 +0800 Subject: [PATCH] Remove force flag to make sure the directory exists --- scripts/install-cxxopts.sh | 2 +- scripts/install-qbe.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install-cxxopts.sh b/scripts/install-cxxopts.sh index b7ba100c..358f028c 100755 --- a/scripts/install-cxxopts.sh +++ b/scripts/install-cxxopts.sh @@ -7,4 +7,4 @@ wget https://github.com/jarro2783/cxxopts/archive/refs/tags/v3.1.1.tar.gz -O - | mkdir build/ && cmake -B build/ . && sudo make -C build/ install && - rm -rf cxxopts-3.1.1/ + rm -r cxxopts-3.1.1/ diff --git a/scripts/install-qbe.sh b/scripts/install-qbe.sh index b434fdef..36dd7605 100755 --- a/scripts/install-qbe.sh +++ b/scripts/install-qbe.sh @@ -6,4 +6,4 @@ wget https://c9x.me/compile/release/qbe-1.1.tar.xz -O - | tar Jxf - && cd qbe-1.1/ && make && sudo make install && - rm -rf qbe-1.1/ + rm -r qbe-1.1/