Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

$mol_build fix git pull #719

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build/build.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ namespace $ {

@ $mol_mem
gitVersion() {
return this.$.$mol_run({ command: 'git version', dir: '.' }).stdout.toString().trim().match(/.*\s+([\d\.]+)$/)?.[1] ?? ''
return this.$.$mol_run({ command: 'git version', dir: '.' }).stdout.toString().trim().match(/.*\s+([\d\.]+\d+)/)?.[1] ?? ''
}

gitDeepenSupported() {
Expand All @@ -641,13 +641,13 @@ namespace $ {
gitPull(path: string) {
const args = [] as string[]

if ( ! this.interactive() ) {
if ( ! this.interactive() && this.gitDeepenSupported() ) {
// depth и deepen не годятся для локальной разработки, поэтому оставляем ограничение глубины пула только для CI
// --depth=1 в сочетании с сабмодулями обрезает историю, кроме первого коммита
// --deepen=1 в git-конфиге сабмодуля выставляет bare=true, после этого все команды падают с сообщением
// --deepen=1, если не сделать unset GIT_DIR, в git-конфиге сабмодуля выставляет bare=true, после этого все команды падают с сообщением
// warning: core.bare and core.worktree do not make sense
// fatal: unable to set up work tree using invalid config
args.push( this.gitDeepenSupported() ? '--deepen=1' : '--depth=1' )
args.push( '--deepen=1' )
}
return this.run_safe( { command: ['git', 'pull', ...args], dir: path } )
}
Expand Down