We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd0f985 commit 51c291dCopy full SHA for 51c291d
aptos-move/aptos-release-builder/src/lib.rs
@@ -43,13 +43,13 @@ pub fn initialize_aptos_core_path(overriden_path: Option<PathBuf>) {
43
};
44
}
45
46
-pub(crate) fn aptos_core_path() -> PathBuf {
+pub fn aptos_core_path() -> PathBuf {
47
APTOS_CORE_PATH
48
.get_or_init(aptos_core_path_at_compile_time)
49
.clone()
50
51
52
-pub(crate) fn aptos_framework_path() -> PathBuf {
+pub fn aptos_framework_path() -> PathBuf {
53
let mut path = aptos_core_path();
54
path.push("aptos-move/framework/aptos-framework");
55
path
0 commit comments