Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/cli/src/util/commands/DevvitCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export abstract class DevvitCommand extends Command {
// Otherwise, we need to read appName or app version from the config
// If the agrument has "@<version>" format
if (appWithVersion.startsWith('@')) {
return { appName: this.project.name, version: appWithVersion };
return { appName: this.project.name, version: appWithVersion.slice(1) };
}

// Otherwise, default to the config and latest.
Expand Down