1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-25 23:21:29 +03:00

F #5627: Fix export flag (#1644)

Co-authored-by: Sergio Betanzos <sbetanzos@opennebula.io>
This commit is contained in:
Jorge Miguel Lobo Escalona 2021-12-02 17:14:42 +01:00 committed by GitHub
parent 61a214e6ea
commit ae877d56d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,7 @@ const exportApp = (
]
file && paramsCommand.push('--file-datastore', file)
associated && associated === 'true' && paramsCommand.push('--no')
associated === 'false' && paramsCommand.push('--no')
tag && paramsCommand.push('--tag', tag)
template && paramsCommand.push('--template', template)
vmname && paramsCommand.push('--vmname', vmname)
@ -278,7 +278,7 @@ const getDockerTags = (
getMarket(
connect,
MARKETPLACE_ID,
({ NAME: MARKET_NAME, MARKET_MAD }) => {
({ MARKET_MAD }) => {
if (MARKET_MAD !== 'dockerhub') {
return callbackBadRequest()
}