Skip to content

Commit 50b53e4

Browse files
committed
hotfix: volare path not respecting --pdk-root cli argument
Resolves #93
1 parent 7458169 commit 50b53e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

volare/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def path_cmd(pdk_root, pdk, version):
184184
version = Version(version, pdk)
185185
print(version.get_dir(pdk_root), end="")
186186
else:
187-
print(get_volare_home())
187+
print(get_volare_home(pdk_root))
188188

189189

190190
@click.command("enable")

volare/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
__version__ = "0.19.2"
14+
__version__ = "0.19.3"
1515

1616
if __name__ == "__main__":
1717
print(__version__, end="")

0 commit comments

Comments
 (0)