Skip to content

Commit

Permalink
hotfix: volare path not respecting --pdk-root cli argument
Browse files Browse the repository at this point in the history
Resolves #93
  • Loading branch information
donn committed Jan 1, 2025
1 parent 7458169 commit 50b53e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion volare/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def path_cmd(pdk_root, pdk, version):
version = Version(version, pdk)
print(version.get_dir(pdk_root), end="")
else:
print(get_volare_home())
print(get_volare_home(pdk_root))


@click.command("enable")
Expand Down
2 changes: 1 addition & 1 deletion volare/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "0.19.2"
__version__ = "0.19.3"

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

0 comments on commit 50b53e4

Please sign in to comment.