Remove trailing space in the path

This commit is contained in:
2021-02-26 07:44:50 +01:00
parent c3e4ef2cdf
commit b8a3bd2989
2 changed files with 4 additions and 4 deletions

View File

@ -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