Skip to content

Commit

Permalink
fix github action
Browse files Browse the repository at this point in the history
  • Loading branch information
tdameros committed Apr 5, 2024
1 parent 3c389b6 commit 6742700
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt update && sudo apt install nasm clang-format -y
run: sudo apt-get update && sudo apt-get install -y nasm clang-format

- name: Check format
run: make check-format
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ tests: $(TEST_NAME)
./$(TEST_NAME)

$(TEST_NAME): $(TEST_OBJ) $(NAME)
$(CC) $(CFLAGS) $(TEST_OBJ) $(NAME) -o $(TEST_NAME)
$(CC) $(CFLAGS) $(TEST_OBJ) -L. -l:$(NAME) -o $(TEST_NAME)

# ---------- VARIABLES RULES ---------- #

Expand Down
2 changes: 1 addition & 1 deletion include/libasm.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#ifndef LIBASM_BUILD_INCLUDE_LIBASM_H_
# define LIBASM_BUILD_INCLUDE_LIBASM_H_

# include <stddef.h>
# include <sys/types.h>

ssize_t ft_read(int fd, void *buf, size_t count);
int ft_strcmp(const char *s1, const char *s2);
Expand Down

0 comments on commit 6742700

Please sign in to comment.