Created
August 13, 2020 16:23
-
-
Save MatheusMuriel/3c0d9e54815d6162702b233b97de7de2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
require 'fileutils' | |
set :port, 6000 | |
diretorio_repo = '/home/Muriel/JarvisBot/' | |
post '/jarvis' do | |
system('systemctl stop jarvisbot.service') | |
FileUtils.cd(diretorio_repo) do | |
system('git pull --rebase') | |
end | |
system('systemctl start jarvisbot.service') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment