Skip to content

Commit 1d6a2a9

Browse files
committed
fix: Fix path error.
1 parent 2589d6e commit 1d6a2a9

3 files changed

Lines changed: 16 additions & 0 deletions

File tree

.yarn/versions/a23a94f4.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
releases:
2+
"@moonrepo/cli": patch
3+
"@moonrepo/core-linux-arm64-gnu": patch
4+
"@moonrepo/core-linux-arm64-musl": patch
5+
"@moonrepo/core-linux-x64-gnu": patch
6+
"@moonrepo/core-linux-x64-musl": patch
7+
"@moonrepo/core-macos-arm64": patch
8+
"@moonrepo/core-macos-x64": patch
9+
"@moonrepo/core-windows-x64-msvc": patch

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
#### 🐞 Fixes
6+
7+
- Fixed a path error for `@moonrepo/cli` package.
8+
39
## 1.39.0
410

511
#### 🚀 Updates

packages/cli/utils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const fs = require('fs');
2+
const path = require('path');
23

34
const isLinux = process.platform === 'linux';
45
const isMacos = process.platform === 'darwin';

0 commit comments

Comments
 (0)