You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/cli/src/lib/setup/setupInstall.ts
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1799,6 +1799,11 @@ export class Install {
1799
1799
`Warning: Could not verify adapter compatibility from GitHub. Installation will proceed but may fail if the adapter does not support GitHub installation.`,
1800
1800
);
1801
1801
}
1802
+
}elseif(githubUser&&githubRepo){
1803
+
// We have GitHub info but no commit hash, cannot verify nogit flag
1804
+
console.warn(
1805
+
`Warning: Could not determine commit hash from GitHub. Installation will proceed but may fail if the adapter does not support GitHub installation.`,
1806
+
);
1802
1807
}
1803
1808
}
1804
1809
@@ -1826,6 +1831,11 @@ export class Install {
1826
1831
`Warning: Could not verify adapter compatibility from GitHub. Installation will proceed but may fail if the adapter does not support GitHub installation.`,
1827
1832
);
1828
1833
}
1834
+
}elseif(githubUser&&githubRepo){
1835
+
// We have GitHub info but no commit hash, cannot verify nogit flag
1836
+
console.warn(
1837
+
`Warning: Could not determine commit hash from GitHub. Installation will proceed but may fail if the adapter does not support GitHub installation.`,
0 commit comments