diff options
| author | Eugen Wissner <belka@caraus.de> | 2021-02-26 07:44:50 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2021-02-26 07:44:50 +0100 |
| commit | b8a3bd2989e206d150d37c6d1e08b49af806d498 (patch) | |
| tree | e6060994d3241935c0a791ff657f4e1c71a66a19 /lib | |
| parent | c3e4ef2cdfb67c2bd4a915887ebc943dbcd19d1f (diff) | |
| download | slackbuilder-b8a3bd2989e206d150d37c6d1e08b49af806d498.tar.gz | |
Remove trailing space in the path
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/download.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/download.rb b/lib/download.rb index 8634721..2f002d2 100644 --- a/lib/download.rb +++ b/lib/download.rb @@ -71,7 +71,7 @@ def remote_file_exists?(url) end def upload_command(local_path, remote_path) - ['scp', "slackbuilds/#{local_path} ", CONFIG[:remote_path] + remote_path] + ['scp', "slackbuilds/#{local_path}", CONFIG[:remote_path] + remote_path] end def clone_and_archive(repo, name_version, tarball) @@ -140,6 +140,6 @@ def commit(package_path, version) sh "git -C slackbuilds checkout -b #{MY_BRANCH} master" end sh "git -C slackbuilds add #{package_path}" - sh %(git -C slackbuilds commit -m "#{message}") + sh %(git -C slackbuilds commit -S -m "#{message}") # sh "git -C slackbuilds push origin #{branch}" end |
