Skip to content

Commit

Permalink
[eas-cli] fix submit with tar.gz files (#257)
Browse files Browse the repository at this point in the history
* [eas-cli] fix submit with tar.gz files

* [eas-cli] update CHANGELOG.md
  • Loading branch information
wkozyra95 authored Mar 2, 2021
1 parent 60b6006 commit ab10b08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ This is the log of notable changes to EAS CLI and related packages.
### 🐛 Bug fixes

- Make sure all files are committed before build. ([#251](https://github.com/expo/eas-cli/pull/251) by [@wkozyra95](https://github.com/wkozyra95))
- Fix `eas submit` support for tar.gz files. ([#257](https://github.com/expo/eas-cli/pull/257)) by [@wkozyra95](https://github.com/wkozyra95))
- Show untracked files when checking `git status`. ([#259](https://github.com/expo/eas-cli/pull/259) by [@wkozyra95](https://github.com/wkozyra95))

### 🧹 Chores
Expand Down
2 changes: 1 addition & 1 deletion packages/eas-cli/src/submissions/utils/files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function moveFileOfTypeAsync(
extension: string,
dest: string
): Promise<string> {
const [matching] = await glob(`*.${extension}`, {
const [matching] = await glob(`**/*.${extension}`, {
absolute: true,
cwd: directory,
});
Expand Down

0 comments on commit ab10b08

Please sign in to comment.