From 3f380d72c6003382dfe113b55c9568452bde85bd Mon Sep 17 00:00:00 2001 From: Vlastimil Holer Date: Thu, 20 Feb 2020 15:27:11 +0100 Subject: [PATCH] M #-: Fix oneprovision LIB_LOCATION if ONE_LOCATION (#4228) (cherry picked from commit 7ae7941daf38f93ccbbd79891af2c5deb35d0609) --- src/cli/oneprovision | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/oneprovision b/src/cli/oneprovision index 0043184f05..b251b8fb49 100755 --- a/src/cli/oneprovision +++ b/src/cli/oneprovision @@ -25,7 +25,7 @@ if !ONE_LOCATION REMOTES_LOCATION = '/var/lib/one/remotes' ANSIBLE_LOCATION = '/usr/share/one/oneprovision/ansible' else - LIB_LOCATION = ONE_LOCATION + '/usr/lib/one' + LIB_LOCATION = ONE_LOCATION + '/lib' RUBY_LIB_LOCATION = ONE_LOCATION + '/lib/ruby' GEMS_LOCATION = ONE_LOCATION + '/share/gems' REMOTES_LOCATION = ONE_LOCATION + '/var/remotes'