diff options
author | Ryan <fauxpark@gmail.com> | 2020-03-16 04:15:42 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-15 17:15:42 +0000 |
commit | c18b51e68e6ee28def492f283c67858e6adf9a95 (patch) | |
tree | d639d360750f0e11686f73b18792aca60aecb57f /util/msys2_install.sh | |
parent | dc68418660e9ba1d21e391548038652b793790a7 (diff) |
msys2_install.sh: wrap requirements.txt in quotes (#8424)
Diffstat (limited to 'util/msys2_install.sh')
-rwxr-xr-x | util/msys2_install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/msys2_install.sh b/util/msys2_install.sh index d1e24ca6d0..001f55dc48 100755 --- a/util/msys2_install.sh +++ b/util/msys2_install.sh @@ -81,7 +81,7 @@ else fi popd -pip3 install -r ${util_dir}/../requirements.txt +pip3 install -r "${util_dir}/../requirements.txt" cp -f "$dir/activate_msys2.sh" "$download_dir/" |