11 lines
136 B
Bash
Executable File
11 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Compile the minishell project
|
|
make -C minishell
|
|
make -C miniRT
|
|
|
|
# start the containers
|
|
docker compose up --build
|