Fix typo in shell script

This commit is contained in:
Alexander Nozik 2022-05-25 19:06:15 +00:00 committed by Space
parent 54803df50d
commit 7563693259

View File

@ -20,7 +20,7 @@ job("Deploy") {
shellScript { shellScript {
interpreter = "/bin/bash" interpreter = "/bin/bash"
content = """ content = """
echo ${'$'}ID | ssh -r -i /dev/stdin /mnt/space/share/spc-site/ "${'$'}USER@${'$'}HOST:/opt" echo ${'$'}ID | scp -r -i /dev/stdin /mnt/space/share/spc-site/ "${'$'}USER@${'$'}HOST:/opt"
""".trimIndent() """.trimIndent()
} }
} }