rhysd / wdio-appium-service

No longer need to launch Appium manually for Webdriver.io
MIT License
9 stars 8 forks source link

wrap cli value in single quotes if it contains space #6

Closed jl- closed 7 years ago

jl- commented 7 years ago
appium: {
    args: {
        deviceName: 'iPhone 5s'
    }
} 

converted as the following invalid bash code

appium --device-name iPhone 5s # iPhone 5s -> 'iPhone 5s'
rhysd commented 7 years ago

Thank you for catching it.