Skip to content

Commit 77856d9

Browse files
committed
ui: fix extensions path
Signed-off-by: Abhishek Kumar <[email protected]>
1 parent 7af9868 commit 77856d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/views/extension/CreateExtension.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export default {
138138
return value.replace(/[^a-zA-Z0-9._-]/g, '').toLowerCase()
139139
},
140140
extenstionBasePath () {
141-
return '/var/lib/cloudstack/management/extensions/' + this.safeName + '/'
141+
return (this.$store.getters.features.extensionspath || '[EXTENSIONS_PATH]') + '/' + this.safeName + '/'
142142
}
143143
},
144144
methods: {

0 commit comments

Comments
 (0)