Skip to content

Commit

Permalink
Add [no-cd] attribute (#1400)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Nov 3, 2022
1 parent 659b821 commit 331f61f
Show file tree
Hide file tree
Showing 7 changed files with 106 additions and 21 deletions.
36 changes: 29 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1203,13 +1203,14 @@ These functions can fail, for example if a path does not have an extension, whic

Recipes may be annotated with attributes that change their behavior.

| Name | Description |
| ------------------- | ------------------------------------------------- |
| `[no-exit-message]` | Don't print an error message when a recipe fails. |
| `[linux]` | Enable recipe on Linux. |
| `[macos]` | Enable recipe on MacOS. |
| `[unix]` | Enable recipe on Unixes. |
| `[windows]` | Enable recipe on Windows. |
| Name | Description |
| ------------------- | ----------------------------------------------- |
| `[no-cd]` | Don't change directory before executing recipe. |
| `[no-exit-message]` | Don't print an error message if recipe fails. |
| `[linux]` | Enable recipe on Linux. |
| `[macos]` | Enable recipe on MacOS. |
| `[unix]` | Enable recipe on Unixes. |
| `[windows]` | Enable recipe on Windows. |

#### Enabling and Disabling Recipes

Expand All @@ -1235,6 +1236,27 @@ run:
main.exe
```

#### Disabling Changing Directory<sup>master</sup>

`just` normally executes recipes with the current directory set to the
directory that contains the `justfile`. This can be disabled using the
`[no-cd]` attribute. This can be used to create recipes which use paths
relative to the invocation directory, or which operate on the current
directory.

For exmaple, this `commit` recipe:

```make
[no-cd]
commit file:
git add {{file}}
git commit
```

Can be used with paths that are relative to the current directory, because
`[no-cd]` prevents `just` from changing the current directory when executing
`commit`.

### Command Evaluation Using Backticks

Backticks can be used to store the result of commands:
Expand Down
1 change: 1 addition & 0 deletions src/attribute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use super::*;
pub(crate) enum Attribute {
Linux,
Macos,
NoCd,
NoExitMessage,
Unix,
Windows,
Expand Down
16 changes: 11 additions & 5 deletions src/platform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ pub(crate) struct Platform;
impl PlatformInterface for Platform {
fn make_shebang_command(
path: &Path,
working_directory: &Path,
working_directory: Option<&Path>,
_shebang: Shebang,
) -> Result<Command, OutputError> {
// shebang scripts can be executed directly on unix
let mut cmd = Command::new(path);

cmd.current_dir(working_directory);
if let Some(working_directory) = working_directory {
cmd.current_dir(working_directory);
}

Ok(cmd)
}
Expand Down Expand Up @@ -48,7 +50,7 @@ impl PlatformInterface for Platform {
impl PlatformInterface for Platform {
fn make_shebang_command(
path: &Path,
working_directory: &Path,
working_directory: Option<&Path>,
shebang: Shebang,
) -> Result<Command, OutputError> {
use std::borrow::Cow;
Expand All @@ -57,7 +59,9 @@ impl PlatformInterface for Platform {
let command = if shebang.interpreter.contains('/') {
// …translate path to the interpreter from unix style to windows style.
let mut cygpath = Command::new("cygpath");
cygpath.current_dir(working_directory);
if let Some(working_directory) = working_directory {
cygpath.current_dir(working_directory);
}
cygpath.arg("--windows");
cygpath.arg(shebang.interpreter);

Expand All @@ -69,7 +73,9 @@ impl PlatformInterface for Platform {

let mut cmd = Command::new(command.as_ref());

cmd.current_dir(working_directory);
if let Some(working_directory) = working_directory {
cmd.current_dir(working_directory);
}

if let Some(argument) = shebang.argument {
cmd.arg(argument);
Expand Down
2 changes: 1 addition & 1 deletion src/platform_interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub(crate) trait PlatformInterface {
/// shebang line `shebang`
fn make_shebang_command(
path: &Path,
working_directory: &Path,
working_directory: Option<&Path>,
shebang: Shebang,
) -> Result<Command, OutputError>;

Expand Down
28 changes: 20 additions & 8 deletions src/recipe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ impl<'src, D> Recipe<'src, D> {
!self.private
}

pub(crate) fn change_directory(&self) -> bool {
!self.attributes.contains(&Attribute::NoCd)
}

pub(crate) fn enabled(&self) -> bool {
let windows = self.attributes.contains(&Attribute::Windows);
let linux = self.attributes.contains(&Attribute::Linux);
Expand Down Expand Up @@ -190,7 +194,9 @@ impl<'src, D> Recipe<'src, D> {

let mut cmd = context.settings.shell_command(config);

cmd.current_dir(&context.search.working_directory);
if self.change_directory() {
cmd.current_dir(&context.search.working_directory);
}

cmd.arg(command);

Expand Down Expand Up @@ -322,13 +328,19 @@ impl<'src, D> Recipe<'src, D> {
})?;

// create a command to run the script
let mut command =
Platform::make_shebang_command(&path, &context.search.working_directory, shebang).map_err(
|output_error| Error::Cygpath {
recipe: self.name(),
output_error,
},
)?;
let mut command = Platform::make_shebang_command(
&path,
if self.change_directory() {
Some(&context.search.working_directory)
} else {
None
},
shebang,
)
.map_err(|output_error| Error::Cygpath {
recipe: self.name(),
output_error,
})?;

if context.settings.positional_arguments {
command.args(positional);
Expand Down
1 change: 1 addition & 0 deletions tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ mod json;
mod line_prefixes;
mod misc;
mod multibyte_char;
mod no_cd;
mod no_exit_message;
mod os_attributes;
mod parser;
Expand Down
43 changes: 43 additions & 0 deletions tests/no_cd.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
use super::*;

#[test]
fn linewise() {
Test::new()
.justfile(
"
[no-cd]
foo:
cat bar
",
)
.current_dir("foo")
.tree(tree! {
foo: {
bar: "hello",
}
})
.stderr("cat bar\n")
.stdout("hello")
.run();
}

#[test]
fn shebang() {
Test::new()
.justfile(
"
[no-cd]
foo:
#!/bin/sh
cat bar
",
)
.current_dir("foo")
.tree(tree! {
foo: {
bar: "hello",
}
})
.stdout("hello")
.run();
}

0 comments on commit 331f61f

Please sign in to comment.