Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ Commands:
remove Removes one pin entry
import-niv Try to import entries from Niv
import-flake Try to import entries from flake.lock
freeze Freeze a pin entry
unfreeze Thaw a pin entry
freeze Freezes a pin entry, preventing it from being changed during an update
unfreeze Thaws a pin entry, allowing it to be changed during an update like a normal pin
get-path Evaluates the store path to a pin, fetching it if necessary. Don't forget to add a GC root
help Print this message or the help of the given subcommand(s)

Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -547,10 +547,10 @@ pub enum Command {
/// Try to import entries from flake.lock
ImportFlake(ImportFlakeOpts),

/// Freeze a pin entry
/// Freezes a pin entry, preventing it from being changed during an update
Freeze(FreezeOpts),

/// Thaw a pin entry
/// Thaws a pin entry, allowing it to be changed during an update like a normal pin
Unfreeze(FreezeOpts),

/// Evaluates the store path to a pin, fetching it if necessary. Don't forget to add a GC root
Expand Down