Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ import org.eclipse.jgit.merge.MergeStrategy
class AssetManager {
private static final String REMOTE_REFS_ROOT = "refs/remotes/origin/"
private static final String REMOTE_DEFAULT_HEAD = REMOTE_REFS_ROOT + "HEAD"

private static final String MULTI_REVISION_SUBDIR = ".repos"
/**
* The folder all pipelines scripts are installed
*/
Expand Down Expand Up @@ -541,6 +541,8 @@ class AssetManager {
return result

root.eachDir { File org ->
if( org.name == MULTI_REVISION_SUBDIR )
return
org.eachDir { File it ->
result << "${org.getName()}/${it.getName()}".toString()
}
Expand Down
Loading