github.com/nilium/gitlab-runner@v12.5.0+incompatible/executors/executor_init.go (about)

     1  package executors
     2  
     3  import (
     4  	// make sure that shells get loaded before executors
     5  	// this happens, because of difference in ordering init()
     6  	// from external packages between 1.4.x and 1.5.x
     7  	// this import forces to load shells before
     8  	// and fixes: panic: no shells defined
     9  	_ "gitlab.com/gitlab-org/gitlab-runner/shells"
    10  )