From 2c5bfe1202e4e1f43663de9c6cf6493e0dee65e1 Mon Sep 17 00:00:00 2001
From: Hansen <Cole2.hansen@live.uwe.ac.uk>
Date: Sun, 9 Mar 2025 11:32:53 +0500
Subject: [PATCH] Updated GitLab CI to upload latest filesss

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e748475..e1ef4e2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,17 +1,17 @@
-image: ubuntu:latest  # Uses Ubuntu as a base
+image: ubuntu:latest  # Use Ubuntu as the base
 
 stages:
   - build
 
 before_script:
-  - echo "Using shell: $(ps -o comm= -p $$)"  # Debugging: check which shell is running
+  - echo "Using shell: $(ps -o comm= -p $$)"  # Debugging: Check which shell is running
   - apt-get update
   - apt-get install -y software-properties-common which
   - add-apt-repository -y ppa:librazer/dev  # Adds Raylib PPA
   - apt-get update
   - apt-get install -y build-essential raylib-dev libgl1-mesa-dev libx11-dev libxcursor-dev libxrandr-dev libxi-dev libxinerama-dev
   - echo "Checking GCC version..."
-  - Get-Command gcc
+  - gcc --version
   - echo "Checking include and library paths..."
   - command -v gcc || echo "GCC not found!"
   - ls -l /usr/include/raylib || echo "Raylib headers not found!"
-- 
GitLab