zip을 사용하여 디렉터리를 무시할 수 없습니다.

zip을 사용하여 디렉터리를 무시할 수 없습니다.

나는 다음 명령을 가지고 있습니다 :

#!/usr/bin/env bash

set -eo pipefail
cd "$(dirname "$(dirname "$BASH_SOURCE")")"

zip -9 -r zips/function.zip . \
 -x '*.git*' -x '*.idea*' -x '*.idea*' \
 -x */node_modules/typescript/*  \
 -x */zips/* -x '*.zip' -x */node_modules/puppeteer/*

어떤 이유로 출력에 다음이 표시됩니다.

updating: node_modules/typescript/loc/lcl/PTB/Targets/ (stored 0%)
updating: node_modules/typescript/loc/lcl/PTB/Targets/ProjectItemsSchema.xaml.lcl (deflated 63%)
updating: node_modules/typescript/loc/lcl/PTB/Targets/TypeScriptProjectProperties.xaml.lcl (deflated 90%)
updating: node_modules/typescript/loc/lcl/PTB/Targets/TypeScriptCompile.xaml.lcl (deflated 86%)

그래서 내 생각엔

*/node_modules/typescript/*

무시되지 않음:

node_modules/typescript

?

관련 정보