diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml index 714e19a..1dc3bd7 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -54,11 +54,11 @@ jobs: ls -alF - name: 🗜️ Create archive run: | - cd build/Release + cd build tar -zcvf hyde-${{github.ref_name}}-linux-${{runner.arch}}.tgz hyde - name: ✍️ Post archive uses: softprops/action-gh-release@v1 with: generate_release_notes: true files: - build/Release/hyde-${{github.ref_name}}-linux-${{runner.arch}}.tgz + build/hyde-${{github.ref_name}}-linux-${{runner.arch}}.tgz diff --git a/sources/autodetect.cpp b/sources/autodetect.cpp index 8609bab..d91f1fa 100644 --- a/sources/autodetect.cpp +++ b/sources/autodetect.cpp @@ -112,7 +112,7 @@ std::vector autodetect_include_paths() { auto command = "echo \"int main() { }\" | clang++ -x c++ -v -o " + temp_a_out + " - 2> " + temp_out; auto command_result = std::system(command.c_str()); - (void)command_result; + (void)command_result; // TODO: handle me std::vector lines(file_slurp(temp_out)); static const std::string begin_string("#include <...> search starts here:");