diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-04-15 12:16:18 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-04-15 12:16:18 +0200 |
commit | 412b9de26301b005f2dfb936025ed76210b6e6c9 (patch) | |
tree | fa1716fc057ad0a7491fdf125433b47293865997 /tools/release.sh | |
parent | c8780d2d7a8c7872c7c40ef22481e8d98142510f (diff) | |
download | weechat-412b9de26301b005f2dfb936025ed76210b6e6c9.zip |
core: add missing space before trailing backslash
Diffstat (limited to 'tools/release.sh')
-rwxr-xr-x | tools/release.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/release.sh b/tools/release.sh index 09747a483..99cc579a3 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -81,7 +81,7 @@ release_build () cmake \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX="${BUILD_DIR}/install" \ - -DWEECHAT_HOME="${BUILD_DIR}/home"\ + -DWEECHAT_HOME="${BUILD_DIR}/home" \ -DENABLE_DOC=ON \ -DENABLE_MAN=ON \ -DENABLE_TESTS=ON \ @@ -113,7 +113,7 @@ release_test_pkg () cmake \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX="${PKG_BUILD_DIR}/install" \ - -DWEECHAT_HOME="${PKG_BUILD_DIR}/home"\ + -DWEECHAT_HOME="${PKG_BUILD_DIR}/home" \ -DENABLE_DOC=ON \ -DENABLE_MAN=ON \ -DENABLE_TESTS=ON \ |