Skip to content

Commit 51c291d

Browse files
committed
fix: aptos framework path.
1 parent fd0f985 commit 51c291d

File tree

1 file changed

+2
-2
lines changed
  • aptos-move/aptos-release-builder/src

1 file changed

+2
-2
lines changed

aptos-move/aptos-release-builder/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ pub fn initialize_aptos_core_path(overriden_path: Option<PathBuf>) {
4343
};
4444
}
4545

46-
pub(crate) fn aptos_core_path() -> PathBuf {
46+
pub fn aptos_core_path() -> PathBuf {
4747
APTOS_CORE_PATH
4848
.get_or_init(aptos_core_path_at_compile_time)
4949
.clone()
5050
}
5151

52-
pub(crate) fn aptos_framework_path() -> PathBuf {
52+
pub fn aptos_framework_path() -> PathBuf {
5353
let mut path = aptos_core_path();
5454
path.push("aptos-move/framework/aptos-framework");
5555
path

0 commit comments

Comments
 (0)