File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ def _gapic_pkg_tar_impl(ctx):
87
87
cd {package_dir_path}/{tar_cd_suffix}
88
88
89
89
tar -zchpf {tar_prefix}/{package_dir}.tar.gz {tar_prefix}/*
90
- cd -
90
+ cd - > /dev/null
91
91
mv {package_dir_path}/{package_dir}.tar.gz {pkg}
92
92
rm -rf {package_dir_path}
93
93
""" .format (
@@ -213,7 +213,7 @@ def _java_gapic_build_configs_pkg_impl(ctx):
213
213
chmod 644 {package_dir_path}/*
214
214
cd {package_dir_path}/{tar_cd_suffix}
215
215
tar -zchpf {tar_prefix}/{package_dir}.tar.gz {tar_prefix}/*
216
- cd -
216
+ cd - > /dev/null
217
217
mv {package_dir_path}/{package_dir}.tar.gz {pkg}
218
218
""" .format (
219
219
templates = " " .join (["'%s'" % f .path for f in expanded_templates ]),
@@ -286,7 +286,7 @@ def _java_gapic_srcs_pkg_impl(ctx):
286
286
done
287
287
cd {package_dir_path}/{tar_cd_suffix}
288
288
tar -zchpf {tar_prefix}/{package_dir}.tar.gz {tar_prefix}/*
289
- cd -
289
+ cd - > /dev/null
290
290
mv {package_dir_path}/{package_dir}.tar.gz {pkg}
291
291
""" .format (
292
292
srcs = " " .join (["'%s'" % f .path for f in srcs ]),
You can’t perform that action at this time.
0 commit comments