@@ -168,31 +168,31 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
168
168
return fmt .Errorf ("invalid walk type: %w" , err )
169
169
}
170
170
171
- if walkType == walk .Stdin {
171
+ if walkType == walk .Stdin && len ( paths ) != 1 {
172
172
// check we have only received one path arg which we use for the file extension / matching to formatters
173
- if len (paths ) != 1 {
174
- return fmt .Errorf ("exactly one path should be specified when using the --stdin flag" )
173
+ return fmt .Errorf ("exactly one path should be specified when using the --stdin flag" )
174
+ }
175
+
176
+ // checks all paths are contained within the tree root and exist
177
+ // also "normalize" paths so they're relative to cfg.TreeRoot
178
+ for i , path := range paths {
179
+ absolutePath , err := filepath .Abs (path )
180
+ if err != nil {
181
+ return fmt .Errorf ("error computing absolute path of %s: %w" , path , err )
175
182
}
176
- } else {
177
- // checks all paths are contained within the tree root and exist
178
- // also "normalize" paths so they're relative to cfg.TreeRoot
179
- for i , path := range paths {
180
- absolutePath , err := filepath .Abs (path )
181
- if err != nil {
182
- return fmt .Errorf ("error computing absolute path of %s: %w" , path , err )
183
- }
184
183
185
- relativePath , err := filepath .Rel (cfg .TreeRoot , absolutePath )
186
- if err != nil {
187
- return fmt .Errorf ("error computing relative path from %s to %s: %s" , cfg .TreeRoot , absolutePath , err )
188
- }
184
+ relativePath , err := filepath .Rel (cfg .TreeRoot , absolutePath )
185
+ if err != nil {
186
+ return fmt .Errorf ("error computing relative path from %s to %s: %s" , cfg .TreeRoot , absolutePath , err )
187
+ }
189
188
190
- if strings .HasPrefix (relativePath , ".." ) {
191
- return fmt .Errorf ("path %s not inside the tree root %s" , path , cfg .TreeRoot )
192
- }
189
+ if strings .HasPrefix (relativePath , ".." ) {
190
+ return fmt .Errorf ("path %s not inside the tree root %s" , path , cfg .TreeRoot )
191
+ }
193
192
194
- paths [i ] = relativePath
193
+ paths [i ] = relativePath
195
194
195
+ if walkType != walk .Stdin {
196
196
if _ , err = os .Stat (absolutePath ); err != nil {
197
197
return fmt .Errorf ("path %s not found" , path )
198
198
}
0 commit comments